Stored Procedures [dbo].[BAEOrderCategoryParentLookupLoad]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@OrderCategoryIDint4
@OrderCategoryParentIDint4
SQL Script
create procedure [dbo].[BAEOrderCategoryParentLookupLoad] @OrderCategoryID as
int,
    @OrderCategoryParentID AS int
AS
    SELECT *
    FROM OrderCategoryParentLookup
    WHERE OrderCategoryID = @OrderCategoryID AND
    OrderCategoryParentID = @OrderCategoryParentID;

GO
Uses